home *** CD-ROM | disk | FTP | other *** search
- //
- // global.js
- // firefox
- //
- // Created by Zak on 2008-06-12.
- // Copyright 2008 Ant.com. All rights reserved.
- //
-
- /**
- * Restart Firefox
- */
- function re()
- {
- var appStartup = AntLib.CCSV("@mozilla.org/toolkit/app-startup;1", "nsIAppStartup");
- appStartup.quit(appStartup.eAttemptQuit | appStartup.eRestart);
- }
-
- /**
- * Inspect the current object
- */
- top.inspect = function (obj)
- {
- var r = "";
-
- try
- {
- for (i in obj)
- {
- try
- {
- r += i + " = " + obj[i] + "\n";
- }
- catch (e)
- {
- r += "ERROR WHILE GETTING ELEMENT \"" + i + "\"\n";
- }
- }
- }
- catch (e)
- {
- r += "ERROR CANNOT INPECT OBJECT\n";
- }
-
- return r;
- }
-